home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-09-07 | 379 b | 14 lines | [TEXT/KEEN] |
- #An example of a custom hAWK program knocked off in a minute
- #to solve a small search problem.
- # - some borrowed from $MFSListInContext
- # File name and line number are printed before each instance
- #Used with "MFS selected files" input option
-
- FNR == 1 { z = split(FILENAME, names, ":")
- }
-
- /PBGetWDInfo|PBGetCatInfo|PBOpenWD|SetVol/ {
- print names[z], FNR
- print "\t", $0
- }
-